home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2008 April
/
PCWorld_2008-04_cd.bin
/
komercni software
/
miton
/
SystemMechanic7Pro.exe
/
{app}
/
smhtml.dll
/
1033
/
HTML
/
REPAIREDPROBLEMWIDGET.JS
< prev
next >
Wrap
Text File
|
2008-01-24
|
701b
|
30 lines
function RepairedProblemTable()
{
this.ID = "tblRepair";
this.tbl = new DataTable();
this.tbl.ID = this.ID;
this.tbl.Cellspacing = "0";
this.tbl.Cellpadding = "0";
this.tbl.Width = "100%";
this.tbl.Class = "module_items tb_recently_repaired";
this.tbl.Border = "0";
this.Add = __RepairedProblemAdd;
function __RepairedProblemAdd(Problem ,Time)
{
// var img = "<img src=\"H_icon_checkmark.gif\" width=\"16\" height=\"12\" />";
var time = "<div style=\"text-align:right;\" >" + Time + "</div>";
this.tbl.Add( Problem, time);
//alert(this.tbl.Count());
this.tbl.ChangeClassInRowByIndex(0, "toprow");
}
}